home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / initscripts.postrm < prev    next >
Text File  |  2009-10-19  |  2KB  |  69 lines

  1. #! /bin/sh
  2. #
  3. # initscripts postrm
  4. #
  5.  
  6. set -e
  7.  
  8. case "$1" in
  9.   purge)
  10.     #
  11.     # Remove abandoned conffiles
  12.     #
  13.     rm -f \
  14.         /etc/init.d/bootclean \
  15.         /etc/init.d/bootclean.dpkg-old \
  16.         /etc/init.d/bootclean.sh \
  17.         /etc/init.d/bootclean.sh.dpkg-old
  18.  
  19.     #
  20.     # Remove configuration files
  21.     #
  22.     rm -f \
  23.         /etc/default/rcS \
  24.         /etc/nologin \
  25.         /etc/motd.tail \
  26.         /etc/motd.static \
  27.         /etc/motd
  28.  
  29.     #
  30.     # Remove state files
  31.     #
  32.     rm -f /var/lib/initscripts/nologin
  33.  
  34.     #
  35.     # Remove run time state files
  36.     #
  37.     rm -f /var/run/motd
  38.  
  39.     #
  40.     # Remove log files
  41.     #
  42.     rm -f \
  43.         /var/log/dmesg \
  44.         /var/log/boot \
  45.         /var/log/fsck/checkroot \
  46.         /var/log/fsck/checkfs
  47.  
  48.     # Remove rc symlinks in the reverse dependency order they were
  49.     # inserted
  50.     update-rc.d stop-bootlogd         remove >/dev/null || exit $?
  51.     update-rc.d stop-bootlogd-single  remove >/dev/null || exit $?
  52.     update-rc.d rc.local              remove >/dev/null || exit $?
  53.     update-rc.d single                remove >/dev/null || exit $?
  54.     update-rc.d killprocs             remove >/dev/null || exit $?
  55.     update-rc.d sendsigs              remove >/dev/null || exit $?
  56.     update-rc.d umountnfs.sh          remove >/dev/null || exit $?
  57.     update-rc.d umountfs              remove >/dev/null || exit $?
  58.     update-rc.d umountroot            remove >/dev/null || exit $?
  59.     update-rc.d reboot                remove >/dev/null || exit $?
  60.     update-rc.d halt                  remove >/dev/null || exit $?
  61.     update-rc.d urandom               remove >/dev/null || exit $?
  62.     update-rc.d bootlogd              remove >/dev/null || exit $?
  63.  
  64.     # Remove /dev/pts and /dev/shm ?
  65.     ;;
  66. esac
  67.  
  68. :
  69.